encoding/asn1.tagAndLength.isCompound (field)
9 uses
encoding/asn1 (current package)
asn1.go#L541: ret.isCompound = b&0x20 == 0x20
asn1.go#L635: if !matchAny && (t.class != ClassUniversal || t.isCompound != compoundType || t.tag != expectedTag) {
asn1.go#L702: if !t.isCompound && t.class == ClassUniversal {
asn1.go#L756: if t.class == expectedClass && t.tag == *params.tag && (t.length == 0 || t.isCompound) {
asn1.go#L839: (!matchAny && t.isCompound != compoundType) {
asn1.go#L859: *v = RawValue{t.class, t.tag, t.isCompound, innerBytes, bytes[initOffset:offset]}
common.go#L53: isCompound bool
marshal.go#L252: if t.isCompound {
marshal.go#L707: isCompound: true,
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |